home *** CD-ROM | disk | FTP | other *** search
/ Software 2000 / Software 2000 Volume 1 (Disc 1 of 2).iso / education / e011.dms / e011.adf / LEX / LEX.bak < prev    next >
Text File  |  1989-09-24  |  1KB  |  35 lines

  1.     LEX is a program which performs a number of useful functions on a text
  2. file.  It outputs word count, long word count, sentence count, and performs 3
  3. readability algorithms on the document.  The three algorithms, and their
  4. meaning, are:
  5.     The Gunning-Fog index: the number equals the approximate level of
  6. schooling (in years) needed to understand the document.
  7.     The Kincaid index is similar to the Gunning-Fog index in its
  8. interpretation.
  9.     The Flesch index and Flesch Grade Level indicators:  The Flesch index
  10. is inversely proportional to the difficulty of the document; the lower
  11. the scale, the harder the document.  It is based on a 1-100 scale.  The Flesch
  12. grade level indicator is again analogous to the other two.
  13.     The usefulness of three different indices is to compare their agreement.
  14. The closer their agreement, the more reliable the measure (they all use 
  15. different algorithms, but usually come out pretty close).
  16.  
  17.     LEX MUST be used from CLI.
  18.  
  19.     LEX can be invoked with the following syntax:
  20.  
  21.         LEX file { file2 file3 ...}
  22.  
  23.     That is, LEX can be used to analyze any number of files in a single 
  24. invocation up to the limits imposed by AmigaDos.
  25.  
  26.     This is my first C project, and my first Amiga project, so if you
  27. have any feedback, send it to:
  28.  
  29.     Jeff Sullivan
  30.     739 Willow Ave
  31.     Penndel, PA  19047
  32.  
  33. All helpful criticism will be appreciated.
  34.  
  35.